DirectX, OpenGL and effect on code size
What about hardware today?
Apart from programming shaders, everything is done without hitting directly the hardware, so even if U are a skilled coder you can't use it: you don't have the docs to hit the hardware directly. Morever there is so much different hardware that you can't help using Graphics API like DirectX and OpenGL. So that means several things:
1) U can't get the max of the hardware
2) U can't use hardware tricks like on the C64 / Atari ST / Amiga / previous VGA card based PCs / ...
3) U can be sure that your 64 KB or 4KB stuff is in fact bigger: calls to DirectX / OpenGL apis use code stored in dll outside your exe. And this has to be added to the exe size to compute the REAL size of it.
4) U can be sure that DirectX or OpenGL will call driver functions to display something so sizes of driver function code must be added too...
So exe sizes AREN'T REAL size. The whole DirectX 8.1 or 9.0c packages take more than 20 MB on your hardrives and drivers also take some KB / MB more. And they also take a lot of space on memory. So a 4KB if not using int 13h and A000:0000 is closer to 1 MB on disk than 4KB. Even in the latter case, you use BIOS calls to initialize video mode and to quit to DOS so the REAL code size is a bit bigger. Add the OS functions code size needed to load the demo and launch it, and yes your needed code is far more bigger than the size of the .exe.
This pic shows that there is DLL loaded and used while a modern demo is running: I have used Iczelion PE Dumper, a cracking tool (freely available at biw. rult.at) to see DLL and modules used by fr-08, and we see it uses directx dll. Please notice that not all modules are really used and are loaded by windows (crypt.dll isn't of any use in "the product"). I also use tiny.exe, a small 4Kb directX 8.0 intro made by Leonard of Oxygen, to show U that it also uses directx dll and generally all graphics intensive applications like games and demos use these dlls.
I have also included a module snapshot of blender installer to show U this program doesn't use directX dll as it doesn't need to like any other installer.
What does using external directx dll mean? "All demo coders are lamers, cheaters, ..." ? NO NO NO!!! That means technology has changed and people have found themselves more interesting to make good artistic / mathematical stuff instead of direct hardware coding. That's also means people who are responsible for microsoft strategy have found better for business to help coders with tons of already wrote routines to use as compatability between all these cards on the market was something impossible to achieve. Hardware coding is a way, but the aim is to get a good demo on screen, not to put bits and bytes here and there in hardware registers. So the industry has found several ways to improve the productivity of coders and whole computer games production team:
1) Build faster and faster hardware
Who believed in 1990 that "in 2004 we will be able to render astonishing complex effects in 3D, with a resolution of 1280*1024*32 at a refreshing rate of more than 85 Hz playing 44 KHz 16 bits sounds in stereo"? A guy like EP, who was then classified fool or idiot!!! Faster hardware means less time to optimise, now no time at all. And how to force people to use this hardware? Drivers + APIS and no hardware docs.
2) Build drivers + apis + tools
This way makes things easier to implement: using a 3D engine already done is faster than to build one from scratch and using functions already written speeds up building a final product like a game: not so much mathematics to master and to implement, not so much hardware stuff to know (how to swap video buffers in this VESA resolution, how to plot a dot in this graphic mode,...). And with tools a team can make marvellous stuff like Farbrausch have done using werkkzeug for FR-08 and The Popular demo. Tools are also used in the game industry.
Yes, things have changed and so coders' habits have changed too: Now they use the system to get their stuff running and as everything is done to do so, there is no shame and portability over millions of hardware combination is maximised.
This demonstrates that fighting like hell to make stuff tiny as possible isn't a good use of your intellectual ressource: before in the past, CPU power was a missing feature, nowadays the industry has filled this lack of. Before HD and memory space were missing, nowadays the industry have filled this lack of. Each time there was a problem for the game coders, graphicians, musicians, raytracers, the electronics come as a solution, as it's always easier to let machines and a few engineers build faster hardware than spending years to get let said a by 2 factor speed optimisation.
What is interesting is to get something beautiful, fast, with good design, mathematically interesting, technically perfect but size limitation isn't anymore anything which could be considered possible as demos depend on other parts whose size you can't reduce and which are bigger in fact than the size of the whole intro. What counts isn't size, what counts is algorithm and spirit inside demos from a coder's point of view. What counts for musicians and graphicians is that their artworks were well presented and well used to build something with harmony. But what counts too is that you release things which please you.
For the fond of "hardware used to the max" coding philosophy, the solution will be to build a dll which once interfaced with your .exe will take the generic code and then build the best possible code for the underlying hardware like java, .net do and virtual processor OS will do. Hopefully demo coders aren't biased on so different hardware java / .net engineers are thus enable us to see perfect demos using the most of the hardware on most PC. Think it like Street Figher old coin op machines : some were showing zoom rotation while others, weaker, and cheaper do not and this was done automatically for the sake of the users.
My vision is mine, you can have a different one, my voice isn't the ultimate truth, this is my truth.